home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 April / Software of the Month Club 1996 April.iso / pc / os2 / htmlchk / mac / hctline.mac < prev    next >
Text File  |  1996-02-21  |  2KB  |  42 lines

  1. /*---------------------------------------------------------------------------*/
  2. /*                                                                           */
  3. /*  hctLine - This REXX Macro is called when the report sends out a LINE     */
  4. /*           Item,  This is called for ALL types of ITEMS                    */
  5. /*                                                                           */
  6. /*  Valid Variables are:                                                     */
  7. /*      hcDeep          hclDoc          hclPhysical     hclFileSize          */
  8. /*      hclHTMLTag      hclFileType     hclMatched      hclLocalFound        */
  9. /*      hclServerRoot   hclOffSite      hclParent       hclAccessCount       */
  10. /*      hcpDoc          hcpPhysical     hcpFileSize     hcpHTMLTag           */
  11. /*      hcpFileType     hcpMatched      hcpLocalFound   hcpServerRoot        */
  12. /*      hcpOffSite      hcpAccessCount                                       */
  13. /*                                                                           */
  14. /*---------------------------------------------------------------------------*/
  15.  
  16.   Call RxhcLineOut '-------------Line------------'
  17.   Call RxhcLineOut 'hcDeep=' hcDeep
  18.   Call RxhcLineOut 'hclDoc=' hclDoc
  19.   Call RxhcLineOut 'hclPhysical=' hclPhysical
  20.   Call RxhcLineOut 'hclFileSize=' hclFileSize
  21.   Call RxhcLineOut 'hclHTMLTag=' hclHTMLTag
  22.   Call RxhcLineOut 'hclFileType=' hclFileType
  23.   Call RxhcLineOut 'hclMatched=' hclMatched
  24.   Call RxhcLineOut 'hclLocalFound=' hclLocalFound
  25.   Call RxhcLineOut 'hclServerRoot=' hclServerRoot
  26.   Call RxhcLineOut 'hclOffSite=' hclOffSite
  27.   Call RxhcLineOut 'hclAccessCount=' hclAccessCount
  28.   Call RxhcLineOut 'hclParent=' hclParent
  29.   Call RxhcLineOut 'hcpDoc=' hcpDoc
  30.   Call RxhcLineOut 'hcpPhysical=' hcpPhysical
  31.   Call RxhcLineOut 'hcpFileSize=' hcpFileSize
  32.   Call RxhcLineOut 'hcpHTMLTag=' hcpHTMLTag
  33.   Call RxhcLineOut 'hcpFileType=' hcpFileType
  34.   Call RxhcLineOut 'hcpMatched=' hcpMatched
  35.   Call RxhcLineOut 'hcpLocalFound=' hcpLocalFound
  36.   Call RxhcLineOut 'hcpServerRoot=' hcpServerRoot
  37.   Call RxhcLineOut 'hcpOffSite=' hcpOffSite
  38.   Call RxhcLineOut 'hcpAccessCount=' hcpAccessCount
  39.  
  40. RETURN
  41.  
  42.